home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 1998 #2
/
Amiga Plus CD - 1998 - No. 2.iso
/
pd
/
musik
/
eagleplayer2.00
/
rexx
/
ep_loadmodule.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1997-08-05
|
292b
|
23 lines
/* EaglePlayer - LOAD required module and play it
alternative:
call 'Eagleplayer loadmodule="..."' from shell
*/
parse arg filename
address 'rexx_EP'
options results
Loadmodule filename
if result == "no" then do
say "Module not loaded!"
end
else do
say "Module loaded!"
end